[신민경] 웹 서버 기타 기능 구현#241
Open
shinminkyoung1 wants to merge 80 commits intosofteerbootcamp-7th:shinminkyoung1from
Open
[신민경] 웹 서버 기타 기능 구현#241shinminkyoung1 wants to merge 80 commits intosofteerbootcamp-7th:shinminkyoung1from
shinminkyoung1 wants to merge 80 commits intosofteerbootcamp-7th:shinminkyoung1from
Conversation
웹 서버 기능 구현 완료 (1/16)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
완료 작업 목록
버그데이 대비 추가 기능 구현
주요 고민과 해결 과정
(?) 이동되지 않고 무한루프에 빠짐
articleDao.selectLatest()를 호출하고 있는데 사용자가 [이전 글]을 눌러서?id=10으로 들어와도, 코드에서 항상selectLatest()(가장 최신글)만 가져오게 되어 있다면 계속 똑같은 글만 보여주거나 로직이 꼬이게 됨→ URL에 id 파라미터로 id의 글을 가져오고, 없으면 최신글을 가져오도록 로직을 분기
ArticleIndexHandler
기존에는 리다이렉트를
response.sendRedirect(Config.MYPAGE);로 치환자를 사용했음→ 정확한 리다이렉트 페이지 경로로 수정해 myPageHandler을 호출할 수 있게 수정하여 해결
AI에 도움받은 부분